home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
info-service
/
gopher
/
Unix
/
gateways
/
techinfo
/
gophtech
/
cleanuplog
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1993-03-01
|
355 b
|
22 lines
#!/bin/csh -fv
set mail = /usr/ucb/mail
set debuglog = "$1"
#
#set whocares = murphy@dccs
#
if ("$debuglog" == "") then
echo "Usage: $0 <logfilename>"
exit -1
endif
grep -s :FatalError "$debuglog"
if ("$status" == 0) then
$mail -s "Gopher TechInfo Gateway Log" $whocares < $debuglog
endif
rm -f $debuglog
touch $debuglog
chown daemon $debuglog